1
حسابداری و مالی::
اعتبارسنجی مدل
Section 4 presents the results with model validation.
واژگان شبکه مترجمین ایران
2
کامپیوتر و شبکه::
تایید اعتبار مدل
Once a given request has been matched to a route, but before the action method (or handler) is called, ASP.NET Core MVC will perform model binding and model validation on the request.
After binding the model but before calling the action method, model validation occurs.
Model validation uses optional attributes on the model type, and can help ensure that the provided model object conforms to certain data requirements.
If you are using model validation, you should be sure to always check that the model is valid before performing any state-altering commands, to ensure your app is not corrupted by invalid data.
This attribute adds automatic model validation checking and any action with an invalid model will return a BadRequest with the details of the validation errors.
واژگان شبکه مترجمین ایران